home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000037_news@newsmaster….columbia.edu _Tue Jul 8 14:22:51 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA06382
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 8 Jul 1997 14:22:51 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA10501
  7.     for kermit.misc@watsun; Tue, 8 Jul 1997 14:22:51 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: SERVER funny
  12. Date: 8 Jul 1997 18:22:49 GMT
  13. Organization: Columbia University
  14. Lines: 22
  15. Message-ID: <5pu0hp$a83$1@newsmaster.cc.columbia.edu>
  16. References: <33C26F40.66A6@indigo.ie> <33c229ad.0@news.iea.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7290
  19.  
  20. In article <33c229ad.0@news.iea.net>,
  21. Roderick A. Anderson <andersr@gryphon> wrote:
  22. : What wildcard is the splat used for?  On UNICES and DOS' it is many "I
  23. : don't cares" whereas on a Data General it is one character (like the
  24. : hook (?) in UNIX and DOS).
  25. :    Since I've seem to remember the Data General AOS operating system
  26. : was developed by a lot of VAXites.  A splat mat be for one character
  27. : if it is a wildcard on the VAX at all.  Therefore the X.DAT.  Remeber
  28. : the wildcards are those for the system you are getting- or
  29. : sending-from.
  30. AOS/VS has completely different wildcard characters from UNIX, VMS, etc.
  31. They are listed in the AOS/VS Appendix of "Using C-Kermit" (Table V-1 on
  32. page 548 of the 2nd Edition).  Very roughly:
  33.  
  34.   + is like *
  35.   * is like ?
  36.   - is like * except stops at .
  37.   ^ is like .. (in UNIX) or like - (in VMS)
  38.   # is like ... (in VMS)
  39.  
  40. - Frank